home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / Tools / tables / Makefile < prev    next >
Encoding:
Makefile  |  1991-12-18  |  1.0 KB  |  46 lines

  1. # tables programs master makefile
  2. #
  3. ############################################################
  4. #
  5. # @(#) $Header: /xtel/pp/pp-beta/Tools/tables/RCS/Makefile,v 6.0 1991/12/18 20:35:38 jpo Rel $
  6. #
  7. # $Log: Makefile,v $
  8. # Revision 6.0  1991/12/18  20:35:38  jpo
  9. # Release 6.0
  10. #
  11. #
  12. ############################################################
  13. #
  14. # Definitions
  15. #
  16. ############################################################
  17.  
  18.  
  19.  
  20. SUBDIRS = abbrev tjoin
  21. ALLDIRS    = $(SUBDIRS) domain compat
  22.  
  23. ############################################################
  24. #
  25. # Building Rules
  26. #
  27. ############################################################
  28.  
  29. target:
  30.     for i in ${SUBDIRS} ; \
  31.     do (echo "cd $$i; $(MAKE)"; cd $$i; $(MAKE)); done
  32.  
  33. install:
  34.     for i in ${SUBDIRS} ; \
  35.     do (echo "cd $$i; $(MAKE) $@"; cd $$i; $(MAKE) $@); done
  36.  
  37. tidy define depend clean lint:
  38.     for i in ${ALLDIRS} ; \
  39.     do (echo "cd $$i; $(MAKE) $@"; cd $$i; $(MAKE) $@); done
  40.  
  41. ############################################################
  42. #
  43. # End of Building Rules
  44. #
  45. ############################################################
  46.